Package-level declarations

Types

Link copied to clipboard

See https://www.anthropic.com/engineering/building-effective-agents

Link copied to clipboard
data class ScoredResult<RESULT, FEEDBACK>(val result: RESULT, val feedback: FEEDBACK, val iterations: Int)
Link copied to clipboard
abstract class WorkflowBuilder<RESULT : Any>(resultClass: Class<RESULT>, inputClasses: List<Class<out Any>>)

Common base class for building workflows, ensuring consistent agent construction

Link copied to clipboard

Ensure consistent naming convention for workflow builders that consume a given input type.

Link copied to clipboard

Ensure consistent naming convention for workflow builders that return a given result type.

Link copied to clipboard